-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVwprintf.c
47 lines (35 loc) · 1.47 KB
/
Vwprintf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
Vwprintf.c
Abstract:
Implementation of the Standard C function.
Writes formatted output by using a pointer to a list of arguments.
Author:
Kilian Kegel
--*/
#include <stdio.h>
#include <stdarg.h>
extern int vfwprintf(FILE* stream, const wchar_t* pszFormat, va_list ap);
/**
Synopsis
#include <wchar.h>
int vwprintf(const wchar_t* pszFormat, va_list ap);
Description
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/vprintf-vprintf-l-vwprintf-vwprintf-l?view=msvc-160
http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf#page=377
The vwprintf function is equivalent to wprintf, with the variable argument list
replaced by arg, which shall have been initialized by the va_start macro (and
possibly subsequent va_arg calls). The vwprintf function does not invoke the
va_end macro.
Parameters
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/vprintf-vprintf-l-vwprintf-vwprintf-l?view=msvc-160#parameters
Returns
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/vprintf-vprintf-l-vwprintf-vwprintf-l?view=msvc-160#return-value
**/
int vwprintf(const wchar_t* pszFormat, va_list ap) {
return vfwprintf(stdout, pszFormat, ap);
}